home *** CD-ROM | disk | FTP | other *** search
/ PC Media 23 / PC MEDIA CD23.iso / share / prog / anubis / colores.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-04  |  1.1 KB  |  48 lines

  1. // ==========================================================================
  2. // COLORES.H
  3. // (C) Anubis Software
  4. // Escrito el 16 de Febrero de 1995
  5. //
  6. // Esta librería, nombra los colores que se pueden utilizar en modo texto
  7. // ==========================================================================
  8.  
  9. #ifndef COLORES.H
  10. #define COLORES.H
  11.  
  12. //definicion de los colores de texto
  13. #define TNEGRO  0
  14. #define TAZUL   1
  15. #define TVERDE  2
  16. #define TCYAN   3
  17. #define TROJO   4
  18. #define TROSA   5
  19. #define TMARRON 6
  20. #define TGRIS   7
  21. #define TGRISOSCURO 8
  22. #define TAZULBRILLANTE 9
  23. #define TVERDEBRILLANTE 10
  24. #define TCYANBRILLANTE 11
  25. #define TMARRONBRILLANTE 12
  26. #define TROSABRILLANTE 13
  27. #define TAMARILLO 14
  28. #define TBLANCO 15
  29.  
  30. // Definicion de los colores de fondo
  31. #define FNEGRO 0
  32. #define FAZUL 1
  33. #define FVERDE 2
  34. #define FCYAN 3
  35. #define FROJO 4
  36. #define FROSA 5
  37. #define FMARRON 6
  38. #define FBLANCO 7
  39. #define FNEGROPARPADEANTE 8
  40. #define FAZULPARPADEANTE 9
  41. #define FVERDEPARPADEANTE 10
  42. #define FCYANPARPADEANTE 11
  43. #define FROJOPARPADEANTE 12
  44. #define FROSAPARPADEANTE 13
  45. #define FMARRONPARPADEANTE 14
  46. #define FBLANCOPARPADEANTE 15
  47.  
  48. #endif